/* Services Page Styles */

.page-hero {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.services-detail {
    padding: 5rem 0;
}

.service-category {
    margin-bottom: 4rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    border-left: 4px solid #2563eb;
}

.service-header .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-header .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-header h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.service-header p {
    color: #4a5568;
    font-size: 1.125rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.product-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.product-card ul li {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.product-card .btn {
    width: 100%;
    text-align: center;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 5rem 0 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .service-header,
    .product-card {
        padding: 1.5rem;
    }

    .cta {
        padding: 3rem 0;
    }

    .cta h2 {
        font-size: 1.75rem;
    }
}

/*logo*/

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    height: 40px;   /* Adjust logo height */
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;    /* Change color based on your header background */
    font-family: 'Inter', sans-serif;
}




body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #e9f1ff 0%, #ffffff 100%);
  color: #222;
}

.filter-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Core Card Style */
.filter-row {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 85, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.filter-row:nth-child(1) { animation-delay: 0.2s; }
.filter-row:nth-child(2) { animation-delay: 0.4s; }
.filter-row:nth-child(3) { animation-delay: 0.6s; }
.filter-row:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.filter-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 85, 255, 0.25);
}

/* Alternate layout direction */
.filter-row.reverse {
  flex-direction: row-reverse;
}

/* Image Styling */
.filter-image img {
  width: 320px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.filter-image img:hover {
  transform: scale(1.05);
}

/* Text Styling */
.filter-description {
  flex: 1;
}

.filter-description h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  background: linear-gradient(to right, #004080, #00aaff);
  
  /* Compatibility: */
  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}


.filter-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-description ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.filter-description ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 1px;
  color: #007BFF;
  font-weight: bold;
  font-size: 1.2rem;
}
